home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fseek.c < prev    next >
C/C++ Source or Header  |  1989-06-16  |  4KB  |  122 lines

  1. /* 
  2.  * fseek.c --
  3.  *
  4.  *    Source code for the "fseek" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fseek.c,v 1.5 89/06/15 22:37:53 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22.  
  23. extern long lseek();
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * fseek --
  29.  *
  30.  *    Modify the access position of a stream.
  31.  *
  32.  * Results:
  33.  *    Returns 0 if the seek was completed successfully, -1 if any
  34.  *    sort of error occurred.
  35.  *
  36.  * Side effects:
  37.  *    The access position of stream (i.e. the place in the file where
  38.  *    the next character will be read or written) is set to the sum
  39.  *    of offset and a base value.  If base is 0, the base value is 0.
  40.  *    If base is 1, the base value is the current access position.
  41.  *    If base is 2, the base value is the length of the file.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. long
  47. fseek(stream, offset, base)
  48.     register FILE *stream;        /* Stream whose position is to
  49.                      * be changed. */
  50.     int offset;                /* See above for explanation. */
  51.     int base;                /* See above for explanation. */
  52. {
  53.     int result;
  54.  
  55.     if ((stream->readProc != (void (*)()) StdioFileReadProc)
  56.         || ((stream->flags & (STDIO_READ|STDIO_WRITE)) == 0)) {
  57.     return -1;
  58.     }
  59.  
  60.     /*
  61.      * Optimize for the case in which we are doing only reads and we
  62.      * can reset the pointers without doing a real lseek.  (Don't
  63.      * bother if relative to EOF, or if the buffer is invalid.)  This
  64.      * is useful when people want to peek forward more than one
  65.      * character at a time and use fseek to reset the buffer after
  66.      * peeking.
  67.      */
  68.     if (((stream->flags & (STDIO_READ|STDIO_WRITE)) == STDIO_READ) &&
  69.     (base != 2) && stream->readCount > 0) {
  70.     int endAddr;        /* file pointer for end of read buffer  */
  71.     int curAddr;        /* file pointer for current ptr into read
  72.                    buffer  */
  73.     int startAddr;        /* file pointer for start of read buffer  */
  74.     int newAddr;        /* file pointer after seek */
  75.     
  76.     endAddr = lseek((int) stream->clientData, (long) 0, 1);
  77.     if (endAddr == -1) {
  78.         return -1;
  79.     }
  80.     curAddr = endAddr - stream->readCount;
  81.     startAddr = curAddr - (stream->lastAccess + 1 - stream->buffer);
  82.     newAddr = offset;
  83.     if (base == 1) {
  84.         newAddr += curAddr;
  85.     }
  86.     if (newAddr >= startAddr && newAddr <= endAddr) {
  87.         stream->readCount += curAddr - newAddr;
  88.         stream->lastAccess -= curAddr - newAddr;
  89.         stream->flags &= ~STDIO_EOF;
  90.         return 0;
  91.     }
  92.     }
  93.     
  94.     /*
  95.      * I'm going to reset all the buffer pointers, so flush any pending
  96.      * output.
  97.      */
  98.     
  99.     result = fflush(stream);
  100.  
  101.     /*
  102.      * Compute the offset and base to pass to the system to reposition.
  103.      * This is a tricky if the base value is the current access position:
  104.      * have to account for the characters that the system has passed to
  105.      * me but that I haven't passed to the user.
  106.      */
  107.     
  108.     if (base == 1) {
  109.     offset -= stream->readCount;
  110.     }
  111.  
  112.     stream->readCount = 0;
  113.     stream->writeCount = 0;
  114.     stream->lastAccess = stream->buffer - 1;
  115.     stream->flags &= ~STDIO_EOF;
  116.  
  117.     if (lseek((int) stream->clientData, (long) offset, base) == -1) {
  118.     return -1;
  119.     }
  120.     return result;
  121. }
  122.